home *** CD-ROM | disk | FTP | other *** search
- @echo off
- rem Convert PostScript to PDF.
-
- rem NOTE: for questions about using this file on Windows NT, please
- rem contact Matt Sergeant (matt.sergeant@iss-oxygen.co.uk).
-
- set PS2PDFPARAMS=-q -dNOPAUSE -dBATCH -sDEVICE#pdfwrite
-
- if "%OS%"=="Windows_NT" goto nt
-
- rem Run ps2pdf on any Microsoft OS. The executable must be named gs.
-
- set PS2PDFGS=gs
-
- :run
- if "%1"=="" goto usage
- if "%2"=="" goto usage
- if not "%3"=="" goto usage
-
- rem Watcom C deletes = signs, so use # instead.
- %PS2PDFGS% %PS2PDFPARAMS% -sOutputFile#%2 %1
- goto end
-
- :usage
- echo "Usage: ps2pdf input.ps output.pdf"
- goto end
-
- rem Run ps2pdf on Windows NT. The executable must be named gswin32c.
-
- :nt
- set PS2PDFGS=gswin32c
- if not CMDEXTVERSION 1 goto run
- if "%1"=="" goto ntusage
- if "%2"=="" goto nooutfile
- if not "%3"=="" goto ntusage
-
- rem Watcom C deletes = signs, so use # instead.
- %PS2PDFGS% %PS2PDFPARAMS% -sOutputFile#%2 %1
- goto end
-
- :ntusage
- echo "Usage: ps2pdf input.ps [output.pdf]"
- goto end
-
- :nooutfile
- set PS2PDF=%1
- set PS2PDF=%PS2PDF:.PS=.PDF%
- %PS2PDFGS% %PS2PDFPARAMS% -sOutputFile#%PS2PDF% %1
-
- :end
-